-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.1.2.x P(x) (a+b x^2)^p.nb
More file actions
4495 lines (4434 loc) · 268 KB
/
1.1.2.x P(x) (a+b x^2)^p.nb
File metadata and controls
4495 lines (4434 loc) · 268 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 7.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 145, 7]
NotebookDataLength[ 270040, 4486]
NotebookOptionsPosition[ 265862, 4373]
NotebookOutlinePosition[ 267567, 4426]
CellTagsIndexPosition[ 267524, 4423]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[
StyleBox[
RowBox[{Cell[TextData[StyleBox["Rules for integrands of the form",
FontFamily->"Arial",
FontSize->16]], "None"],
RowBox[{
SubscriptBox["P", "q"], "[", "x", "]"}], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
SuperscriptBox["x", "2"]}]}], ")"}], "p"]}],
FontSize->16]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, {3.5233155055329347`*^9, 3.523315506402936*^9}, {
3.523318726949605*^9, 3.5233187276796064`*^9}, {3.523920400879534*^9,
3.5239204094439487`*^9}, 3.52392096260852*^9, 3.523921038171853*^9,
3.5340477459008017`*^9, 3.5340515540554085`*^9, {3.536542511100503*^9,
3.53654251626051*^9}, {3.536775961244521*^9, 3.5367759616145215`*^9}, {
3.544373142375139*^9, 3.5443731599851637`*^9}, {3.5721095751430073`*^9,
3.5721095751430073`*^9}, {3.57578648209792*^9, 3.575786503859958*^9},
3.575786540270422*^9, {3.5757866379421935`*^9, 3.5757866609522343`*^9},
3.5758230749171176`*^9, 3.5758233482775*^9, {3.613327218550954*^9,
3.6133272231709604`*^9}, 3.614282334464916*^9, 3.637089239358961*^9, {
3.63718608251597*^9, 3.6371860873675785`*^9}, {3.6372961338379884`*^9,
3.637296139681322*^9}, {3.637344894980813*^9, 3.63734490909162*^9},
3.698957575583933*^9, 3.699331188316843*^9, 3.699380604029868*^9, {
3.700772902911004*^9, 3.7007729039250064`*^9}, {3.7104380298356133`*^9,
3.71043804900671*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["1:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
RowBox[{
SubscriptBox["P", "q"], "[", "x", "]"}], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
SuperscriptBox["x", "2"]}]}], ")"}], "p"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"], " ", Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{"p", "+", "2"}], "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}]]]],
"None"]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193422443984776`*^9, 3.5193422447260776`*^9},
3.5193424488212357`*^9, {3.5193434708254333`*^9, 3.519343473103037*^9}, {
3.5193435097631016`*^9, 3.51934353169674*^9}, {3.519345739319023*^9,
3.519345739599823*^9}, 3.5193462601259375`*^9, {3.5193475061060295`*^9,
3.5193475233908596`*^9}, {3.519351391880224*^9, 3.5193513931402254`*^9}, {
3.519403773021052*^9, 3.5194037798564425`*^9}, 3.5194106793250647`*^9, {
3.519537578341393*^9, 3.5195375792305946`*^9}, {3.5195376277778797`*^9,
3.51953767927357*^9}, {3.5197586260636144`*^9, 3.5197586260636144`*^9}, {
3.51978053295651*^9, 3.519780542862528*^9}, {3.5197806526087203`*^9,
3.5197806657595434`*^9}, {3.5197807490168896`*^9, 3.5197807642581167`*^9},
3.5197809004619555`*^9, {3.519782653514635*^9, 3.5197826623286505`*^9}, {
3.5200207810164795`*^9, 3.520020785046485*^9}, {3.521070903512648*^9,
3.5210709252746863`*^9}, 3.521070971825168*^9, {3.5210731408529778`*^9,
3.5210731428653812`*^9}, {3.5211320572901077`*^9,
3.5211320822301426`*^9}, {3.521132813901167*^9, 3.5211328157011695`*^9}, {
3.521138107168577*^9, 3.521138138788622*^9}, {3.5211381923486967`*^9,
3.5211381938886986`*^9}, {3.5211382265587444`*^9,
3.5211382265587444`*^9}, {3.521343667321047*^9, 3.5213436675910473`*^9}, {
3.5214684233945236`*^9, 3.521468423644124*^9}, {3.521498726078348*^9,
3.5214987342371626`*^9}, 3.5214990694817514`*^9, {3.521499270144904*^9,
3.5214992712057056`*^9}, {3.5215003013379154`*^9, 3.521500301712316*^9}, {
3.5219976927814455`*^9, 3.521997693251446*^9}, {3.5219986558127937`*^9,
3.521998658082797*^9}, {3.5219987574129357`*^9, 3.5219987574129357`*^9}, {
3.5232922837046824`*^9, 3.523292285514685*^9}, {3.523298890391301*^9,
3.5232988913273025`*^9}, {3.523298964090622*^9, 3.523298964761423*^9}, {
3.5233014330961895`*^9, 3.523301438584998*^9}, {3.5233014732858562`*^9,
3.5233014821282706`*^9}, {3.5233018663696966`*^9,
3.5233018673680983`*^9}, {3.5233178387762012`*^9, 3.523317850106217*^9}, {
3.5247091405725665`*^9, 3.5247091412745676`*^9}, 3.5247095617205048`*^9, {
3.5247096993243446`*^9, 3.5247096993243446`*^9}, 3.5247101411715193`*^9, {
3.5247654024623036`*^9, 3.5247654024623036`*^9}, {3.5256248949224505`*^9,
3.525624895332451*^9}, 3.525624956932537*^9, {3.525624997382594*^9,
3.525624997382594*^9}, {3.5265768995329633`*^9, 3.5265768997357635`*^9}, {
3.5274449513982077`*^9, 3.5274449516166086`*^9}, {3.527742184189887*^9,
3.527742184189887*^9}, {3.5277856900514727`*^9, 3.527785690311473*^9}, {
3.527787932786621*^9, 3.5277879372666273`*^9}, {3.535600011169888*^9,
3.5356000208099017`*^9}, {3.5356000872099943`*^9, 3.535600110770027*^9}, {
3.5356021148428335`*^9, 3.5356021148428335`*^9}, {3.535602582773488*^9,
3.5356026094135256`*^9}, {3.535639887330123*^9, 3.5356398881569242`*^9}, {
3.535657579350357*^9, 3.535657579568757*^9}, {3.5374009905182686`*^9,
3.5374010070982914`*^9}, 3.5374013786488113`*^9, {3.537404282362877*^9,
3.5374043178629265`*^9}, 3.5374051365640726`*^9, {3.53740692019657*^9,
3.537406922556573*^9}, {3.5374071828969374`*^9, 3.5374071834169383`*^9},
3.537407709367675*^9, 3.5374078548978786`*^9, {3.5374209940349827`*^9,
3.537420994404983*^9}, {3.5374210688650875`*^9, 3.537421088775115*^9},
3.537459232708495*^9, {3.5374904451880465`*^9, 3.537490445438047*^9}, {
3.537893051358388*^9, 3.537893051517397*^9}, {3.57583098979558*^9,
3.5758311004621744`*^9}, {3.5758314050683093`*^9, 3.575831406160311*^9},
3.5758316276183004`*^9, {3.5758316601443577`*^9, 3.575831660393958*^9}, {
3.5761899315768027`*^9, 3.5761899384068127`*^9}, {3.576190475217564*^9,
3.576190487547581*^9}, {3.5761906313577824`*^9, 3.57619065829782*^9}, {
3.5761915708090973`*^9, 3.5761915727691*^9}, {3.5761916757792444`*^9,
3.5761916757792444`*^9}, {3.576191714499299*^9, 3.5761917162893014`*^9},
3.576193018021124*^9, {3.5761931740813427`*^9, 3.576193209531392*^9}, {
3.576193357191599*^9, 3.5761933649116096`*^9}, {3.576195786705*^9,
3.576195786905*^9}, 3.5762164166703854`*^9, {3.5762171961114764`*^9,
3.576217221471512*^9}, {3.5762199064577713`*^9, 3.5762199083777733`*^9}, {
3.576219940747819*^9, 3.576219940747819*^9}, {3.576355648938896*^9,
3.576355649098897*^9}, {3.576372395889512*^9, 3.576372416359541*^9}, {
3.576375171973398*^9, 3.5763751842734156`*^9}, {3.576375553633933*^9,
3.576375574993963*^9}, {3.5763782066964483`*^9, 3.5763782069064484`*^9},
3.6368259343028884`*^9, 3.637089267350562*^9, {3.6370903589870005`*^9,
3.6370903589870005`*^9}, {3.637204066767187*^9, 3.6372041015416484`*^9},
3.6373449485618773`*^9, {3.6373452086817555`*^9, 3.6373452159651723`*^9}, {
3.6375526730550175`*^9, 3.637552673303031*^9}, 3.6385658393048105`*^9,
3.6989575650353293`*^9, {3.6991225433696446`*^9, 3.6991225435766563`*^9}, {
3.699331166570405*^9, 3.6993311685828085`*^9}, {3.699380592228324*^9,
3.699380593127375*^9}, {3.699830613100087*^9, 3.6998306134900875`*^9}, {
3.699831119164976*^9, 3.699831119164976*^9}, {3.7004275579081917`*^9,
3.700427558656993*^9}, {3.700773150176241*^9, 3.7007731504414415`*^9}, {
3.7007922184446163`*^9, 3.700792218634617*^9}, 3.710438120761814*^9,
3.7104382644940357`*^9, 3.7417198990929623`*^9, {3.741726938685604*^9,
3.741726940781724*^9}},
FontSize->12,
FontWeight->"Bold"],
Cell["Derivation: Algebraic expansion", "Subsubsection",
CellChangeTimes->{
3.496441803031353*^9, 3.4965396318089237`*^9, {3.4966002562016735`*^9,
3.4966002624716825`*^9}, 3.496600707442305*^9, 3.4966008475725017`*^9, {
3.4966070255131593`*^9, 3.496607032413169*^9}, 3.518279406700592*^9, {
3.51840552316576*^9, 3.5184055392257824`*^9}, 3.5184748983401833`*^9, {
3.518646163266424*^9, 3.518646178492051*^9}, 3.518646644012469*^9, {
3.5186466815305347`*^9, 3.5186467324970245`*^9}, {3.5255875999924393`*^9,
3.525587604844048*^9}, {3.5260656055333147`*^9, 3.526065605823315*^9}, {
3.5356001190500393`*^9, 3.53560011941004*^9}, {3.5356395364699063`*^9,
3.535639540806714*^9}}],
Cell[TextData[{
"Rule 1.1.2.x.1: If ",
Cell[BoxData[
RowBox[{
RowBox[{"p", "+", "2"}], "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.4964417379912624`*^9, 3.4964417471112747`*^9}, {
3.496441910111503*^9, 3.4964419275315275`*^9}, 3.496451213764926*^9, {
3.496539487018721*^9, 3.4965395223187704`*^9}, {3.4966001213614845`*^9,
3.4966001362815056`*^9}, {3.4966047635399923`*^9,
3.4966048329500895`*^9}, {3.496604896730179*^9, 3.496605019710351*^9}, {
3.496605050490394*^9, 3.4966050527103972`*^9}, {3.4966066606926484`*^9,
3.496606694832696*^9}, 3.496606873362946*^9, {3.4966081836347804`*^9,
3.496608250534874*^9}, {3.496608418375109*^9, 3.496608441025141*^9}, {
3.4966322809467688`*^9, 3.4966322818867702`*^9}, {3.4968592460220995`*^9,
3.4968592640557313`*^9}, {3.4968593076422076`*^9,
3.4968593113862143`*^9}, {3.496859384233942*^9, 3.496859384233942*^9}, {
3.518223900967896*^9, 3.518223909467908*^9}, 3.5182817155426493`*^9, {
3.518285874431555*^9, 3.518285899625599*^9}, {3.5182860969191456`*^9,
3.518286138321618*^9}, {3.518286898517355*^9, 3.518286898517355*^9}, {
3.5182870794776726`*^9, 3.5182870794776726`*^9}, {3.518469530324359*^9,
3.5184695402943726`*^9}, {3.5184751824166822`*^9,
3.5184752026967173`*^9}, {3.5184768778636603`*^9, 3.518476918735732*^9}, {
3.51864635421076*^9, 3.5186463558487625`*^9}, {3.5211382176687317`*^9,
3.5211382205087357`*^9}, {3.5214987812400455`*^9,
3.5214987812400455`*^9}, {3.521998888253119*^9, 3.521998888253119*^9}, {
3.5233014976566973`*^9, 3.5233014976566973`*^9}, {3.5247091445817738`*^9,
3.5247091445817738`*^9}, {3.524709699932746*^9, 3.524709699932746*^9}, {
3.5247654133823185`*^9, 3.5247654133823185`*^9}, {3.525624999252597*^9,
3.525624999252597*^9}, {3.5277424355843287`*^9, 3.5277424355843287`*^9}, {
3.535600843671054*^9, 3.535600843671054*^9}, {3.5356020906827993`*^9,
3.5356020970728083`*^9}, {3.5356026443635745`*^9,
3.5356026443635745`*^9}, {3.5356398819481134`*^9, 3.535639882712515*^9},
3.5356575900831757`*^9, {3.53740754169744*^9, 3.5374075668974752`*^9}, {
3.5374211306951737`*^9, 3.5374211375951834`*^9}, {3.5758311068737855`*^9,
3.5758311175442047`*^9}, {3.5758314090775166`*^9,
3.5758314090775166`*^9}, {3.5761906784678483`*^9,
3.5761906784678483`*^9}, {3.5761917285993185`*^9,
3.5761917285993185`*^9}, {3.576193221081408*^9, 3.576193221081408*^9}, {
3.576193375671624*^9, 3.576193375671624*^9}, {3.5762172467815475`*^9,
3.5762172467815475`*^9}, {3.5762199610578475`*^9,
3.5762199610578475`*^9}, {3.5763724197995453`*^9, 3.576372420049546*^9}, {
3.5763751934434285`*^9, 3.5763751934434285`*^9}, {3.576375561993944*^9,
3.576375561993944*^9}, {3.63709036177416*^9, 3.63709036177416*^9}, {
3.637204107469659*^9, 3.637204107469659*^9}, {3.637345220283419*^9,
3.6373452207254443`*^9}, {3.6990619539369135`*^9,
3.6990619563170495`*^9}, {3.699124258137724*^9, 3.699124258385738*^9},
3.699331320745476*^9, 3.699380648999148*^9, {3.699830616688093*^9,
3.699830617078094*^9}, {3.6998311170745726`*^9, 3.6998311170745726`*^9}, {
3.7004275625257998`*^9, 3.7004275628222*^9}, {3.700773164543866*^9,
3.700773165043067*^9}, {3.700792228603631*^9, 3.700792229013632*^9},
3.710438995714859*^9, {3.741719949635854*^9, 3.741719949875867*^9}, {
3.74172694962823*^9, 3.74172694980424*^9}}],
Cell[BoxData[
RowBox[{"\[Integral]",
RowBox[{
RowBox[{
SubscriptBox["P", "q"], "[", "x", "]"}], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
SuperscriptBox["x", "2"]}]}], ")"}], "p"],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
RowBox[{"\[Integral]", " ",
RowBox[{
RowBox[{"ExpandIntegrand", "[",
RowBox[{
RowBox[{
RowBox[{
SubscriptBox["P", "q"], "[", "x", "]"}], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
SuperscriptBox["x", "2"]}]}], ")"}], "p"]}], ",", "x"}], "]"}],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579723816*^9, 3.4796580261689425`*^9},
3.479661191290163*^9, {3.479686720164157*^9, 3.479686720204214*^9}, {
3.479686831554328*^9, 3.479686834819022*^9}, {3.4940970712485504`*^9,
3.4940971130286083`*^9}, 3.4940971455886545`*^9, 3.4953915848214207`*^9,
3.495391696001576*^9, 3.4958399855843487`*^9, 3.495840155344586*^9,
3.495840624735243*^9, {3.4958474296047697`*^9, 3.495847433754776*^9}, {
3.4958476539050837`*^9, 3.495847660315093*^9}, {3.4958482220958796`*^9,
3.4958482231858807`*^9}, {3.495848257515929*^9, 3.4958482607459335`*^9},
3.4959261390123196`*^9, 3.4959262745925093`*^9, 3.4959264909328117`*^9,
3.4959265843129425`*^9, 3.495926967463479*^9, {3.496184978535224*^9,
3.496185020185282*^9}, {3.4961873840085917`*^9, 3.496187409278627*^9}, {
3.4961890232008867`*^9, 3.4961890250708895`*^9}, 3.4961956176127515`*^9, {
3.4961956815728407`*^9, 3.496195696542862*^9}, {3.4961957791729774`*^9,
3.4961957920929956`*^9}, 3.496195845773071*^9, 3.518405474905692*^9, {
3.51840566597596*^9, 3.5184056974360037`*^9}, {3.518405737026059*^9,
3.5184057718861084`*^9}, {3.5184058668262415`*^9, 3.518405869606245*^9}, {
3.518474939165455*^9, 3.518474949695473*^9}, {3.518474980162327*^9,
3.5184749818939295`*^9}, {3.5186461872280664`*^9,
3.5186462239349313`*^9}, {3.5186462556341867`*^9,
3.5186463116226854`*^9}, {3.5186468118699636`*^9,
3.5186468129619656`*^9}, {3.5186468443804207`*^9,
3.5186468801668835`*^9}, {3.5188834282085204`*^9, 3.5188834428185406`*^9},
3.5188905291484613`*^9, {3.5188908372288933`*^9, 3.518890840348897*^9}, {
3.521498794827669*^9, 3.5214987966372724`*^9}, {3.521500837242457*^9,
3.5215008547456875`*^9}, {3.524709145330575*^9, 3.524709147155778*^9},
3.5247095625161057`*^9, 3.5247096025253754`*^9, {3.5247097005411468`*^9,
3.524709701165148*^9}, 3.5256249626225452`*^9, {3.5256250169126215`*^9,
3.525625046652663*^9}, {3.5277877398363514`*^9, 3.527787747546362*^9}, {
3.535600034589921*^9, 3.5356000558999505`*^9}, 3.5356021247128468`*^9, {
3.535602618323538*^9, 3.535602636973564*^9}, 3.535639688741774*^9, {
3.5374010955384154`*^9, 3.537401126038458*^9}, {3.5374011816885357`*^9,
3.5374012356886115`*^9}, {3.5374043272629395`*^9,
3.5374043424729614`*^9}, {3.537404412143059*^9, 3.537404447203108*^9},
3.5374049441438036`*^9, {3.5374049778538504`*^9, 3.537405014353902*^9}, {
3.537405361844388*^9, 3.537405422514473*^9}, 3.537405466594535*^9, {
3.5374054977145786`*^9, 3.5374055014245834`*^9}, {3.537406590916109*^9,
3.537406623666155*^9}, {3.5374066630462103`*^9, 3.5374066653962135`*^9}, {
3.53742099924499*^9, 3.537421003544996*^9}, {3.53745860085761*^9,
3.5374586332976556`*^9}, {3.5374586707877083`*^9,
3.5374586712977085`*^9}, {3.537459234868498*^9, 3.5374592366385*^9},
3.575831092880561*^9, {3.575831261298457*^9, 3.575831268006469*^9},
3.5758314098107176`*^9, {3.57619052925764*^9, 3.5761905466976643`*^9},
3.576190596447734*^9, 3.5761906941278706`*^9, {3.576193297291515*^9,
3.576193307341529*^9}, {3.5762172332915287`*^9, 3.5762172349215307`*^9}, {
3.5763724277095566`*^9, 3.5763724306795607`*^9}, {3.576375195983432*^9,
3.576375211283454*^9}, {3.6370892681896105`*^9, 3.6370892689896564`*^9}, {
3.6372040848028193`*^9, 3.637204087174023*^9}, {3.6373449568583517`*^9,
3.637344959860524*^9}, {3.6385658398408413`*^9, 3.638565840400873*^9}, {
3.698957599826319*^9, 3.6989576000113297`*^9}, {3.6993312083316784`*^9,
3.699331208347278*^9}, {3.6993806133138847`*^9, 3.699380618463894*^9}, {
3.7104381218238754`*^9, 3.710438122335904*^9}, {3.710438264508036*^9,
3.710438264517037*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}, {3.518475243178789*^9, 3.518475247765197*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{"Pq_", "*",
RowBox[{
RowBox[{"(",
RowBox[{"a_", "+",
RowBox[{"b_.", "*",
RowBox[{"x_", "^", "2"}]}]}], ")"}], "^", "p_."}]}], ",",
"x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{"ExpandIntegrand", "[",
RowBox[{
RowBox[{"Pq", "*",
RowBox[{
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", "*",
RowBox[{"x", "^", "2"}]}]}], ")"}], "^", "p"}]}], ",", "x"}],
"]"}], ",", "x"}], "]"}], " ", "/;", "\n",
RowBox[{
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"a", ",", "b"}], "}"}], ",", "x"}], "]"}], " ", "&&", " ",
RowBox[{"PolyQ", "[",
RowBox[{"Pq", ",", "x"}], "]"}], " ", "&&", " ",
RowBox[{"IGtQ", "[",
RowBox[{"p", ",",
RowBox[{"-", "2"}]}], "]"}]}]}]}]], "Code",
CellChangeTimes->{{3.494097165958683*^9, 3.4940971894087152`*^9}, {
3.4940972668388243`*^9, 3.4940972723188314`*^9}, 3.49539148440128*^9,
3.495839738475589*^9, 3.4958405008250694`*^9, {3.495847490784856*^9,
3.4958474999948683`*^9}, {3.4958477172451725`*^9, 3.495847721615179*^9}, {
3.495848224085882*^9, 3.4958482277058873`*^9}, {3.4958482626259365`*^9,
3.4958482686359444`*^9}, 3.4959261054722724`*^9, {3.4959262905725317`*^9,
3.4959262958725395`*^9}, 3.495926443222745*^9, 3.4961849395451694`*^9,
3.496185884976493*^9, 3.4961888731806765`*^9, {3.4961890260508904`*^9,
3.4961890290708947`*^9}, {3.496191957967628*^9, 3.4961919600576305`*^9},
3.49619205250776*^9, 3.4961952203321953`*^9, {3.496195426482484*^9,
3.496195433172493*^9}, {3.496195586822708*^9, 3.496195595732721*^9},
3.496195754542943*^9, 3.4966189754082823`*^9, {3.4966198797795486`*^9,
3.496619907439587*^9}, {3.4968579645422487`*^9, 3.4968579680210547`*^9},
3.5171911044266214`*^9, 3.518211198418105*^9, 3.5182420941409807`*^9, {
3.518281849687285*^9, 3.518281849874485*^9}, {3.5182861978669233`*^9,
3.518286207226939*^9}, 3.518286893072945*^9, 3.518287077449669*^9, {
3.518405919376315*^9, 3.5184059327163334`*^9}, 3.518406000866429*^9, {
3.5184061023365707`*^9, 3.518406115016588*^9}, {3.5184065135071464`*^9,
3.518406515547149*^9}, {3.518406800569559*^9, 3.5184068071395683`*^9}, {
3.518455696848171*^9, 3.518455715349804*^9}, {3.5184695492443857`*^9,
3.5184695498143864`*^9}, {3.5184750261356077`*^9,
3.5184750485372467`*^9}, {3.5184750988941355`*^9, 3.518475163072648*^9},
3.5184752811336555`*^9, {3.518475372144215*^9, 3.518475372315816*^9},
3.518476122541534*^9, 3.5184761841304417`*^9, {3.5184762225533094`*^9,
3.51847622274051*^9}, {3.5184764457117014`*^9, 3.518476449268508*^9}, {
3.5186463404515357`*^9, 3.5186463437119417`*^9}, {3.5186463743971953`*^9,
3.5186464507437296`*^9}, {3.5186469255005636`*^9, 3.518646996402688*^9}, {
3.5188834532285557`*^9, 3.518883467828576*^9}, {3.518890540078477*^9,
3.5188905826085367`*^9}, {3.518890830198883*^9, 3.5188908328088865`*^9}, {
3.518891390959668*^9, 3.518891394309673*^9}, 3.5202847651693087`*^9, {
3.520285003400935*^9, 3.5202850059700823`*^9}, {3.5208997381370683`*^9,
3.520899740707072*^9}, {3.521660257927198*^9, 3.521660259867201*^9},
3.5219988599330792`*^9, 3.522442292804413*^9, {3.5233015037279077`*^9,
3.523301508327915*^9}, 3.523322644531102*^9, {3.524709150618984*^9,
3.5247091535829897`*^9}, {3.5247093503585353`*^9,
3.5247093737573757`*^9}, {3.524709408679037*^9, 3.5247094106290407`*^9}, {
3.524712568613783*^9, 3.524712573028591*^9}, {3.524761860287345*^9,
3.524761863717349*^9}, {3.5247654793724113`*^9, 3.524765481852415*^9}, {
3.5256250193826246`*^9, 3.5256250500926676`*^9}, 3.5256255683533936`*^9, {
3.5277424141030912`*^9, 3.5277424172542963`*^9}, {3.5277877535163703`*^9,
3.527787765556387*^9}, 3.529381208336618*^9, {3.5356001300400543`*^9,
3.535600196300147*^9}, 3.5356002344202003`*^9, 3.535600268880249*^9, {
3.535602284793071*^9, 3.5356023143431125`*^9}, {3.5356023837532096`*^9,
3.5356023923232217`*^9}, {3.5356397141542187`*^9,
3.5356397169622235`*^9}, {3.5356397864447455`*^9, 3.5356398018419724`*^9},
3.5356400146731462`*^9, {3.53565756401553*^9, 3.5356575648267317`*^9},
3.53565764377847*^9, {3.537401151318494*^9, 3.5374011700485196`*^9}, {
3.53740127729867*^9, 3.5374013490787706`*^9}, {3.5374014341088896`*^9,
3.53740145567892*^9}, 3.537401846519467*^9, {3.537402075299787*^9,
3.53740211313984*^9}, {3.537402143759883*^9, 3.5374021466998873`*^9}, {
3.5374022340400095`*^9, 3.5374022427300215`*^9}, {3.5374022754000673`*^9,
3.537402343240162*^9}, {3.53740237781021*^9, 3.5374023986102395`*^9}, {
3.537402438800296*^9, 3.5374024443003035`*^9}, {3.5374024822903566`*^9,
3.5374025073503923`*^9}, {3.537402537830435*^9, 3.537402602520525*^9}, {
3.5374026415705795`*^9, 3.5374026419505806`*^9}, {3.5374028378008547`*^9,
3.5374028427908616`*^9}, {3.5374028826709175`*^9, 3.53740289916094*^9}, {
3.5374031666713147`*^9, 3.537403237441414*^9}, {3.5374032698214593`*^9,
3.5374032729314637`*^9}, {3.537403411771658*^9, 3.537403463761731*^9}, {
3.537403508831794*^9, 3.5374035633618703`*^9}, {3.537403669252019*^9,
3.5374036798420334`*^9}, 3.537403913792361*^9, {3.5374066950662546`*^9,
3.537406858726484*^9}, 3.5374069576466227`*^9, {3.5374069980766788`*^9,
3.537407001206683*^9}, {3.5374100229109135`*^9, 3.53741004883095*^9}, {
3.5374101193510485`*^9, 3.5374101285010614`*^9}, 3.5374102374312143`*^9, {
3.5374189347020993`*^9, 3.537419129172372*^9}, 3.537419197522467*^9, {
3.5374592386985035`*^9, 3.537459254558525*^9}, 3.5374596088090215`*^9, {
3.5374641854354286`*^9, 3.5374641997054486`*^9}, {3.5374642345654974`*^9,
3.5374642746355534`*^9}, {3.5374652467269144`*^9, 3.53746530068699*^9}, {
3.537485392010972*^9, 3.5374854053609905`*^9}, 3.5374855606412086`*^9, {
3.5761908962981534`*^9, 3.5761909317882032`*^9}, {3.576190966758252*^9,
3.5761909799782705`*^9}, {3.576191349588788*^9, 3.576191392498848*^9}, {
3.576191703019283*^9, 3.5761917105392933`*^9}, {3.576191800199419*^9,
3.576191802389422*^9}, {3.576191840289475*^9, 3.576191861629505*^9}, {
3.576192614040558*^9, 3.576192617270563*^9}, {3.576193228211418*^9,
3.57619327976149*^9}, {3.576193321221548*^9, 3.5761933301815605`*^9}, {
3.576203717790106*^9, 3.576203873400324*^9}, {3.5762039845904794`*^9,
3.5762039916904893`*^9}, {3.576217256401561*^9, 3.5762172687715783`*^9}, {
3.5762199868678837`*^9, 3.576219990977889*^9}, {3.576372440719575*^9,
3.5763724521795907`*^9}, {3.5763752205334663`*^9, 3.576375234543486*^9}, {
3.576375527093896*^9, 3.5763755305439005`*^9}, {3.576375666642892*^9,
3.5763756698128967`*^9}, {3.6368255477486796`*^9,
3.6368255504942846`*^9}, {3.6370899634903793`*^9, 3.637089964479436*^9}, {
3.637204125927491*^9, 3.63720416458836*^9}, 3.637270153821639*^9, {
3.637344979993675*^9, 3.6373449835418787`*^9}, 3.6373450768022127`*^9, {
3.637345229946972*^9, 3.637345250528149*^9}, {3.6373453051742744`*^9,
3.6373453071433873`*^9}, 3.6373456824798555`*^9, 3.6373516984739504`*^9, {
3.637358778272892*^9, 3.6373587788199234`*^9}, {3.637359416532398*^9,
3.637359416717409*^9}, 3.6386797446151543`*^9, 3.64270211354062*^9, {
3.6989577460166807`*^9, 3.698957785775955*^9}, {3.698957863922425*^9,
3.6989579043057346`*^9}, 3.6990518906325493`*^9, 3.6993312300157166`*^9,
3.6993312830090094`*^9, {3.6993806232531023`*^9, 3.6993806318019176`*^9}, {
3.699830619745699*^9, 3.6998306201512995`*^9}, 3.6998311131433654`*^9, {
3.7004162675720725`*^9, 3.700416283688901*^9}, 3.7104378173374596`*^9, {
3.7104383084895515`*^9, 3.7104383429995255`*^9}},
Background->GrayLevel[0.85]],
Cell["", "Subsubsection",
CellDingbat->None,
CellChangeTimes->{3.4796643211106243`*^9}]
}, Closed]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["2:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
RowBox[{
SubscriptBox["P", "q"], "[", "x", "]"}], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
SuperscriptBox["x", "2"]}]}], ")"}], "p"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"], " ", Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{
SubscriptBox["P", "q"], "[",
RowBox[{"x", ",", "0"}], "]"}], "\[Equal]", "0"}]]]],
"None"]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193422443984776`*^9, 3.5193422447260776`*^9},
3.5193424488212357`*^9, {3.5193434708254333`*^9, 3.519343473103037*^9}, {
3.5193435097631016`*^9, 3.51934353169674*^9}, {3.519345739319023*^9,
3.519345739599823*^9}, 3.5193462601259375`*^9, {3.5193475061060295`*^9,
3.5193475233908596`*^9}, {3.519351391880224*^9, 3.5193513931402254`*^9}, {
3.519403773021052*^9, 3.5194037798564425`*^9}, 3.5194106793250647`*^9, {
3.519537578341393*^9, 3.5195375792305946`*^9}, {3.5195376277778797`*^9,
3.51953767927357*^9}, {3.5197586260636144`*^9, 3.5197586260636144`*^9}, {
3.51978053295651*^9, 3.519780542862528*^9}, {3.5197806526087203`*^9,
3.5197806657595434`*^9}, {3.5197807490168896`*^9, 3.5197807642581167`*^9},
3.5197809004619555`*^9, {3.519782653514635*^9, 3.5197826623286505`*^9}, {
3.5200207810164795`*^9, 3.520020785046485*^9}, {3.521070903512648*^9,
3.5210709252746863`*^9}, 3.521070971825168*^9, {3.5210731408529778`*^9,
3.5210731428653812`*^9}, {3.5211320572901077`*^9,
3.5211320822301426`*^9}, {3.521132813901167*^9, 3.5211328157011695`*^9}, {
3.521138107168577*^9, 3.521138138788622*^9}, {3.5211381923486967`*^9,
3.5211381938886986`*^9}, {3.5211382265587444`*^9,
3.5211382265587444`*^9}, {3.521343667321047*^9, 3.5213436675910473`*^9}, {
3.5214684233945236`*^9, 3.521468423644124*^9}, {3.521498726078348*^9,
3.5214987342371626`*^9}, 3.5214990694817514`*^9, {3.521499270144904*^9,
3.5214992712057056`*^9}, {3.5215003013379154`*^9, 3.521500301712316*^9}, {
3.5219976927814455`*^9, 3.521997693251446*^9}, {3.5219986558127937`*^9,
3.521998658082797*^9}, {3.5219987574129357`*^9, 3.5219987574129357`*^9}, {
3.5232922837046824`*^9, 3.523292285514685*^9}, {3.523298890391301*^9,
3.5232988913273025`*^9}, {3.523298964090622*^9, 3.523298964761423*^9}, {
3.5233014330961895`*^9, 3.523301438584998*^9}, {3.5233014732858562`*^9,
3.5233014821282706`*^9}, {3.5233018663696966`*^9,
3.5233018673680983`*^9}, {3.5233178387762012`*^9, 3.523317850106217*^9}, {
3.5247091405725665`*^9, 3.5247091412745676`*^9}, 3.5247095617205048`*^9, {
3.5247096993243446`*^9, 3.5247096993243446`*^9}, 3.5247101411715193`*^9, {
3.5247654024623036`*^9, 3.5247654024623036`*^9}, {3.5256248949224505`*^9,
3.525624895332451*^9}, 3.525624956932537*^9, {3.525624997382594*^9,
3.525624997382594*^9}, {3.5265768995329633`*^9, 3.5265768997357635`*^9}, {
3.5274449513982077`*^9, 3.5274449516166086`*^9}, {3.527742184189887*^9,
3.527742184189887*^9}, {3.5277856900514727`*^9, 3.527785690311473*^9}, {
3.527787932786621*^9, 3.5277879372666273`*^9}, {3.535600011169888*^9,
3.5356000208099017`*^9}, {3.5356000872099943`*^9, 3.535600110770027*^9}, {
3.5356021148428335`*^9, 3.5356021148428335`*^9}, {3.535602582773488*^9,
3.5356026094135256`*^9}, {3.535639887330123*^9, 3.5356398881569242`*^9}, {
3.535657579350357*^9, 3.535657579568757*^9}, {3.5374009905182686`*^9,
3.5374010070982914`*^9}, 3.5374013786488113`*^9, {3.537404282362877*^9,
3.5374043178629265`*^9}, 3.5374051365640726`*^9, {3.53740692019657*^9,
3.537406922556573*^9}, {3.5374071828969374`*^9, 3.5374071834169383`*^9},
3.537407709367675*^9, 3.5374078548978786`*^9, {3.5717974355084715`*^9,
3.571797435858472*^9}, {3.5718614030584593`*^9, 3.5718614033284597`*^9},
3.5758365582521505`*^9, {3.5758365935822*^9, 3.575836634562258*^9}, {
3.575836999212768*^9, 3.5758370017627716`*^9}, {3.575837282243164*^9,
3.5758372846731677`*^9}, 3.575837452513403*^9, {3.5764713615635448`*^9,
3.5764713615635448`*^9}, 3.5764713948835917`*^9, {3.6370964731507106`*^9,
3.637096473850751*^9}, {3.637096509769805*^9, 3.637096509769805*^9}, {
3.6372543195841565`*^9, 3.637254321206559*^9}, {3.637263028470092*^9,
3.637263046509124*^9}, {3.637269505224541*^9, 3.6372695163071747`*^9}, {
3.637287154690321*^9, 3.637287154900321*^9}, {3.637296166718869*^9,
3.6372962156496677`*^9}, 3.637296262106325*^9, {3.6372965148817825`*^9,
3.63729653686604*^9}, {3.6372967459870014`*^9, 3.637296795881855*^9}, {
3.63729762801045*^9, 3.637297630491592*^9}, {3.637298162849041*^9,
3.6372981628500414`*^9}, {3.6372995533105707`*^9,
3.6372995553866897`*^9}, {3.63729982936136*^9, 3.6372998312874703`*^9}, {
3.637299940846737*^9, 3.637299940846737*^9}, 3.6373470677800903`*^9, {
3.6373475219760685`*^9, 3.6373475507187123`*^9}, {3.637347877298392*^9,
3.6373478785714645`*^9}, {3.6373515890226903`*^9,
3.6373515897347307`*^9}, {3.637353896279658*^9, 3.6373539091013913`*^9}, {
3.637354015956503*^9, 3.6373540165035343`*^9}, {3.6373543290644116`*^9,
3.637354329841456*^9}, {3.637541983799627*^9, 3.637542033875491*^9}, {
3.6375423950901513`*^9, 3.6375424006734705`*^9}, {3.6375426508697805`*^9,
3.6375426510597916`*^9}, {3.637542763348214*^9, 3.6375427637982397`*^9}, {
3.637552814778123*^9, 3.6375528155461674`*^9}, {3.6375528699102764`*^9,
3.63755287014529*^9}, {3.6375971855390453`*^9, 3.6375971858010607`*^9}, {
3.6375978520491676`*^9, 3.6375978532902384`*^9}, 3.638565856905817*^9, {
3.6394416058044043`*^9, 3.639441606531446*^9}, {3.6394539571998367`*^9,
3.6394539600139976`*^9}, {3.6394540695152607`*^9,
3.6394540697422733`*^9}, {3.639592311413557*^9, 3.639592316452366*^9}, {
3.642611102222767*^9, 3.6426111024597807`*^9}, 3.698957600505358*^9, {
3.699124169047628*^9, 3.6991241693086433`*^9}, 3.699331208362878*^9, {
3.6993806736209917`*^9, 3.699380674572593*^9}, {3.700427569936813*^9,
3.700427570701214*^9}, 3.710438123040945*^9, 3.7104382645320377`*^9, {
3.710438605303529*^9, 3.7104386105238276`*^9}, {3.7417199727651763`*^9,
3.741719973133198*^9}, {3.7418209211015577`*^9, 3.7418209236187015`*^9}},
FontSize->12,
FontWeight->"Bold"],
Cell["Derivation: Algebraic simplification", "Subsubsection",
CellChangeTimes->{
3.496441803031353*^9, 3.4965396318089237`*^9, {3.4966002562016735`*^9,
3.4966002624716825`*^9}, 3.496600707442305*^9, 3.4966008475725017`*^9, {
3.4966070255131593`*^9, 3.496607032413169*^9}, 3.518279406700592*^9, {
3.51840552316576*^9, 3.5184055392257824`*^9}, 3.5184748983401833`*^9, {
3.518646163266424*^9, 3.518646178492051*^9}, 3.518646644012469*^9, {
3.5186466815305347`*^9, 3.5186467324970245`*^9}, {3.5255875999924393`*^9,
3.525587604844048*^9}, {3.5260656055333147`*^9, 3.526065605823315*^9}, {
3.5356001190500393`*^9, 3.53560011941004*^9}, {3.5356395364699063`*^9,
3.535639540806714*^9}, {3.637297657489136*^9, 3.637297659432247*^9}, {
3.637542058633907*^9, 3.637542059663966*^9}, {3.710438547784239*^9,
3.710438549928361*^9}}],
Cell[TextData[{
"Rule 1.1.2.x.2: If ",
Cell[BoxData[
RowBox[{
RowBox[{
SubscriptBox["P", "q"], "[",
RowBox[{"x", ",", "0"}], "]"}], "\[Equal]", "0"}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.4964417379912624`*^9, 3.4964417471112747`*^9}, {
3.496441910111503*^9, 3.4964419275315275`*^9}, 3.496451213764926*^9, {
3.496539487018721*^9, 3.4965395223187704`*^9}, {3.4966001213614845`*^9,
3.4966001362815056`*^9}, {3.4966047635399923`*^9,
3.4966048329500895`*^9}, {3.496604896730179*^9, 3.496605019710351*^9}, {
3.496605050490394*^9, 3.4966050527103972`*^9}, {3.4966066606926484`*^9,
3.496606694832696*^9}, 3.496606873362946*^9, {3.4966081836347804`*^9,
3.496608250534874*^9}, {3.496608418375109*^9, 3.496608441025141*^9}, {
3.4966322809467688`*^9, 3.4966322818867702`*^9}, {3.4968592460220995`*^9,
3.4968592640557313`*^9}, {3.4968593076422076`*^9,
3.4968593113862143`*^9}, {3.496859384233942*^9, 3.496859384233942*^9}, {
3.518223900967896*^9, 3.518223909467908*^9}, 3.5182817155426493`*^9, {
3.518285874431555*^9, 3.518285899625599*^9}, {3.5182860969191456`*^9,
3.518286138321618*^9}, {3.518286898517355*^9, 3.518286898517355*^9}, {
3.5182870794776726`*^9, 3.5182870794776726`*^9}, {3.518469530324359*^9,
3.5184695402943726`*^9}, {3.5184751824166822`*^9,
3.5184752026967173`*^9}, {3.5184768778636603`*^9, 3.518476918735732*^9}, {
3.51864635421076*^9, 3.5186463558487625`*^9}, {3.5211382176687317`*^9,
3.5211382205087357`*^9}, {3.5214987812400455`*^9,
3.5214987812400455`*^9}, {3.521998888253119*^9, 3.521998888253119*^9}, {
3.5233014976566973`*^9, 3.5233014976566973`*^9}, {3.5247091445817738`*^9,
3.5247091445817738`*^9}, {3.524709699932746*^9, 3.524709699932746*^9}, {
3.5247654133823185`*^9, 3.5247654133823185`*^9}, {3.525624999252597*^9,
3.525624999252597*^9}, {3.5277424355843287`*^9, 3.5277424355843287`*^9}, {
3.535600843671054*^9, 3.535600843671054*^9}, {3.5356020906827993`*^9,
3.5356020970728083`*^9}, {3.5356026443635745`*^9,
3.5356026443635745`*^9}, {3.5356398819481134`*^9, 3.535639882712515*^9},
3.5356575900831757`*^9, {3.53740754169744*^9, 3.5374075668974752`*^9}, {
3.5758366663923025`*^9, 3.5758366752923145`*^9}, {3.5764713671035523`*^9,
3.5764713671035523`*^9}, {3.6370964798420935`*^9,
3.6370964798420935`*^9}, {3.637096511289892*^9, 3.6370965112908916`*^9}, {
3.6372630681643624`*^9, 3.6372630681653624`*^9}, {3.6372632878209257`*^9,
3.637263361815158*^9}, {3.6372962970183215`*^9, 3.6372963088830004`*^9}, {
3.637296570410959*^9, 3.637296570410959*^9}, {3.637296813055837*^9,
3.637296813055837*^9}, {3.6372976772462664`*^9, 3.6372976772462664`*^9}, {
3.6372977113562174`*^9, 3.6372977930278883`*^9}, {3.637298005585046*^9,
3.637298009818288*^9}, {3.63729816650025*^9, 3.63729816650025*^9}, {
3.6372998621272345`*^9, 3.6372998621282344`*^9}, {3.6372999510593204`*^9,
3.6372999510593204`*^9}, {3.637347577996273*^9, 3.637347586179741*^9}, {
3.637353919995014*^9, 3.6373539199960146`*^9}, {3.6373540226788874`*^9,
3.6373540226788874`*^9}, {3.6375420514524965`*^9,
3.6375420514524965`*^9}, {3.639592331944194*^9, 3.639592331944194*^9}, {
3.699124189765813*^9, 3.699124194982112*^9}, 3.6993313208078756`*^9,
3.699380649061548*^9, {3.700427595179058*^9, 3.700427595475458*^9}, {
3.710438643316703*^9, 3.710438643317703*^9}, 3.710438996272891*^9, {
3.741719988972103*^9, 3.7417199892841215`*^9}, {3.7418209377005067`*^9,
3.7418209377005067`*^9}}],
Cell[BoxData[
RowBox[{"\[Integral]",
RowBox[{
RowBox[{
SubscriptBox["P", "q"], "[", "x", "]"}], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
SuperscriptBox["x", "2"]}]}], ")"}], "p"],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
RowBox[{"\[Integral]",
RowBox[{"x", " ",
RowBox[{"PolynomialQuotient", "[",
RowBox[{
RowBox[{
SubscriptBox["P", "q"], "[", "x", "]"}], ",", "x", ",", "x"}],
"]"}], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
SuperscriptBox["x", "2"]}]}], ")"}], "p"],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579723816*^9, 3.4796580261689425`*^9},
3.479661191290163*^9, {3.479686720164157*^9, 3.479686720204214*^9}, {
3.479686831554328*^9, 3.479686834819022*^9}, {3.4940970712485504`*^9,
3.4940971130286083`*^9}, 3.4940971455886545`*^9, 3.4953915848214207`*^9,
3.495391696001576*^9, 3.4958399855843487`*^9, 3.495840155344586*^9,
3.495840624735243*^9, {3.4958474296047697`*^9, 3.495847433754776*^9}, {
3.4958476539050837`*^9, 3.495847660315093*^9}, {3.4958482220958796`*^9,
3.4958482231858807`*^9}, {3.495848257515929*^9, 3.4958482607459335`*^9},
3.4959261390123196`*^9, 3.4959262745925093`*^9, 3.4959264909328117`*^9,
3.4959265843129425`*^9, 3.495926967463479*^9, {3.496184978535224*^9,
3.496185020185282*^9}, {3.4961873840085917`*^9, 3.496187409278627*^9}, {
3.4961890232008867`*^9, 3.4961890250708895`*^9}, 3.4961956176127515`*^9, {
3.4961956815728407`*^9, 3.496195696542862*^9}, {3.4961957791729774`*^9,
3.4961957920929956`*^9}, 3.496195845773071*^9, 3.518405474905692*^9, {
3.51840566597596*^9, 3.5184056974360037`*^9}, {3.518405737026059*^9,
3.5184057718861084`*^9}, {3.5184058668262415`*^9, 3.518405869606245*^9}, {
3.518474939165455*^9, 3.518474949695473*^9}, {3.518474980162327*^9,
3.5184749818939295`*^9}, {3.5186461872280664`*^9,
3.5186462239349313`*^9}, {3.5186462556341867`*^9,
3.5186463116226854`*^9}, {3.5186468118699636`*^9,
3.5186468129619656`*^9}, {3.5186468443804207`*^9,
3.5186468801668835`*^9}, {3.5188834282085204`*^9, 3.5188834428185406`*^9},
3.5188905291484613`*^9, {3.5188908372288933`*^9, 3.518890840348897*^9}, {
3.521498794827669*^9, 3.5214987966372724`*^9}, {3.521500837242457*^9,
3.5215008547456875`*^9}, {3.524709145330575*^9, 3.524709147155778*^9},
3.5247095625161057`*^9, 3.5247096025253754`*^9, {3.5247097005411468`*^9,
3.524709701165148*^9}, 3.5256249626225452`*^9, {3.5256250169126215`*^9,
3.525625046652663*^9}, {3.5277877398363514`*^9, 3.527787747546362*^9}, {
3.535600034589921*^9, 3.5356000558999505`*^9}, 3.5356021247128468`*^9, {
3.535602618323538*^9, 3.535602636973564*^9}, 3.535639688741774*^9, {
3.5374010955384154`*^9, 3.537401126038458*^9}, {3.5374011816885357`*^9,
3.5374012356886115`*^9}, {3.5374043272629395`*^9,
3.5374043424729614`*^9}, {3.537404412143059*^9, 3.537404447203108*^9},
3.5374049441438036`*^9, {3.5374049778538504`*^9, 3.537405014353902*^9}, {
3.537405361844388*^9, 3.537405422514473*^9}, 3.537405466594535*^9, {
3.5374054977145786`*^9, 3.5374055014245834`*^9}, {3.537406590916109*^9,
3.537406623666155*^9}, {3.5374066630462103`*^9, 3.5374066653962135`*^9},
3.575837108412921*^9, {3.575837138742964*^9, 3.57583714352297*^9},
3.5758372914931774`*^9, 3.5758374681734247`*^9, 3.5764713981035957`*^9,
3.6370964859824443`*^9, {3.6370965919395046`*^9, 3.6370965979598494`*^9}, {
3.6372640113643103`*^9, 3.637264037294793*^9}, {3.6372664813965883`*^9,
3.6372664816066*^9}, 3.637296277794222*^9, {3.637296352835514*^9,
3.637296356396718*^9}, {3.63729687848658*^9, 3.6372969090653286`*^9}, {
3.6372970281571407`*^9, 3.6372970400628214`*^9}, 3.6372976915100822`*^9, {
3.6372978574035707`*^9, 3.6372978791118126`*^9}, {3.637297915119872*^9,
3.637297923118329*^9}, {3.63729802873137*^9, 3.6372980323555775`*^9}, {
3.637347616134454*^9, 3.637347620070679*^9}, {3.63735159829222*^9,
3.637351610065894*^9}, {3.6373539495437045`*^9, 3.637353957494159*^9}, {
3.63735433148455*^9, 3.637354354315856*^9}, 3.6375424130151763`*^9, {
3.6375424449690037`*^9, 3.637542448721219*^9}, {3.6375424917266784`*^9,
3.6375425949405823`*^9}, {3.6375427677574663`*^9,
3.6375427709886513`*^9}, {3.637542816652263*^9, 3.637542847038001*^9}, {
3.6375430314785504`*^9, 3.637543037601901*^9}, {3.6385658575718555`*^9,
3.638565858091885*^9}, {3.6394538093053775`*^9, 3.639453821851095*^9}, {
3.639453992672866*^9, 3.639454004797559*^9}, {3.6395923622746468`*^9,
3.6395923751914697`*^9}, {3.6989576006993694`*^9,
3.6989576213525505`*^9}, {3.6993312083940783`*^9,
3.6993312083940783`*^9}, {3.699380680297803*^9, 3.699380689174219*^9}, {
3.710438123568975*^9, 3.7104381240650034`*^9}, {3.710438264545038*^9,
3.7104382645480385`*^9}, {3.7104386539173093`*^9, 3.71043866179276*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}, {3.518475243178789*^9, 3.518475247765197*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{"Pq_", "*",
RowBox[{
RowBox[{"(",
RowBox[{"a_", "+",
RowBox[{"b_.", "*",
RowBox[{"x_", "^", "2"}]}]}], ")"}], "^", "p_"}]}], ",",
"x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{"x", "*",
RowBox[{"PolynomialQuotient", "[",
RowBox[{"Pq", ",", "x", ",", "x"}], "]"}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", "*",
RowBox[{"x", "^", "2"}]}]}], ")"}], "^", "p"}]}], ",", "x"}], "]"}],
" ", "/;", "\n",
RowBox[{
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"a", ",", "b", ",", "p"}], "}"}], ",", "x"}], "]"}], " ", "&&",
" ",
RowBox[{"PolyQ", "[",
RowBox[{"Pq", ",", "x"}], "]"}], " ", "&&", " ",
RowBox[{"EqQ", "[",
RowBox[{
RowBox[{"Coeff", "[",
RowBox[{"Pq", ",", "x", ",", "0"}], "]"}], ",", "0"}], "]"}], " ", "&&",
" ",
RowBox[{"Not", "[",
RowBox[{"MatchQ", "[",
RowBox[{"Pq", ",",
RowBox[{
RowBox[{
RowBox[{"x", "^", "m_."}], "*", "u_."}], " ", "/;", " ",
RowBox[{"IntegerQ", "[", "m", "]"}]}]}], "]"}], "]"}]}]}]}]], "Code",
CellChangeTimes->{{3.494097165958683*^9, 3.4940971894087152`*^9}, {
3.4940972668388243`*^9, 3.4940972723188314`*^9}, 3.49539148440128*^9,
3.495839738475589*^9, 3.4958405008250694`*^9, {3.495847490784856*^9,
3.4958474999948683`*^9}, {3.4958477172451725`*^9, 3.495847721615179*^9}, {
3.495848224085882*^9, 3.4958482277058873`*^9}, {3.4958482626259365`*^9,
3.4958482686359444`*^9}, 3.4959261054722724`*^9, {3.4959262905725317`*^9,
3.4959262958725395`*^9}, 3.495926443222745*^9, 3.4961849395451694`*^9,
3.496185884976493*^9, 3.4961888731806765`*^9, {3.4961890260508904`*^9,
3.4961890290708947`*^9}, {3.496191957967628*^9, 3.4961919600576305`*^9},
3.49619205250776*^9, 3.4961952203321953`*^9, {3.496195426482484*^9,
3.496195433172493*^9}, {3.496195586822708*^9, 3.496195595732721*^9},
3.496195754542943*^9, 3.4966189754082823`*^9, {3.4966198797795486`*^9,
3.496619907439587*^9}, {3.4968579645422487`*^9, 3.4968579680210547`*^9},
3.5171911044266214`*^9, 3.518211198418105*^9, 3.5182420941409807`*^9, {
3.518281849687285*^9, 3.518281849874485*^9}, {3.5182861978669233`*^9,
3.518286207226939*^9}, 3.518286893072945*^9, 3.518287077449669*^9, {
3.518405919376315*^9, 3.5184059327163334`*^9}, 3.518406000866429*^9, {
3.5184061023365707`*^9, 3.518406115016588*^9}, {3.5184065135071464`*^9,
3.518406515547149*^9}, {3.518406800569559*^9, 3.5184068071395683`*^9}, {
3.518455696848171*^9, 3.518455715349804*^9}, {3.5184695492443857`*^9,
3.5184695498143864`*^9}, {3.5184750261356077`*^9,
3.5184750485372467`*^9}, {3.5184750988941355`*^9, 3.518475163072648*^9},
3.5184752811336555`*^9, {3.518475372144215*^9, 3.518475372315816*^9},
3.518476122541534*^9, 3.5184761841304417`*^9, {3.5184762225533094`*^9,
3.51847622274051*^9}, {3.5184764457117014`*^9, 3.518476449268508*^9}, {
3.5186463404515357`*^9, 3.5186463437119417`*^9}, {3.5186463743971953`*^9,
3.5186464507437296`*^9}, {3.5186469255005636`*^9, 3.518646996402688*^9}, {
3.5188834532285557`*^9, 3.518883467828576*^9}, {3.518890540078477*^9,
3.5188905826085367`*^9}, {3.518890830198883*^9, 3.5188908328088865`*^9}, {
3.518891390959668*^9, 3.518891394309673*^9}, 3.5202847651693087`*^9, {
3.520285003400935*^9, 3.5202850059700823`*^9}, {3.5208997381370683`*^9,
3.520899740707072*^9}, {3.521660257927198*^9, 3.521660259867201*^9},
3.5219988599330792`*^9, 3.522442292804413*^9, {3.5233015037279077`*^9,
3.523301508327915*^9}, 3.523322644531102*^9, {3.524709150618984*^9,
3.5247091535829897`*^9}, {3.5247093503585353`*^9,
3.5247093737573757`*^9}, {3.524709408679037*^9, 3.5247094106290407`*^9}, {
3.524712568613783*^9, 3.524712573028591*^9}, {3.524761860287345*^9,
3.524761863717349*^9}, {3.5247654793724113`*^9, 3.524765481852415*^9}, {
3.5256250193826246`*^9, 3.5256250500926676`*^9}, 3.5256255683533936`*^9, {
3.5277424141030912`*^9, 3.5277424172542963`*^9}, {3.5277877535163703`*^9,
3.527787765556387*^9}, 3.529381208336618*^9, {3.5356001300400543`*^9,
3.535600196300147*^9}, 3.5356002344202003`*^9, 3.535600268880249*^9, {
3.535602284793071*^9, 3.5356023143431125`*^9}, {3.5356023837532096`*^9,
3.5356023923232217`*^9}, {3.5356397141542187`*^9,
3.5356397169622235`*^9}, {3.5356397864447455`*^9, 3.5356398018419724`*^9},
3.5356400146731462`*^9, {3.53565756401553*^9, 3.5356575648267317`*^9},
3.53565764377847*^9, {3.537401151318494*^9, 3.5374011700485196`*^9}, {
3.53740127729867*^9, 3.5374013490787706`*^9}, {3.5374014341088896`*^9,
3.53740145567892*^9}, 3.537401846519467*^9, {3.537402075299787*^9,
3.53740211313984*^9}, {3.537402143759883*^9, 3.5374021466998873`*^9}, {
3.5374022340400095`*^9, 3.5374022427300215`*^9}, {3.5374022754000673`*^9,
3.537402343240162*^9}, {3.53740237781021*^9, 3.5374023986102395`*^9}, {
3.537402438800296*^9, 3.5374024443003035`*^9}, {3.5374024822903566`*^9,
3.5374025073503923`*^9}, {3.537402537830435*^9, 3.537402602520525*^9}, {
3.5374026415705795`*^9, 3.5374026419505806`*^9}, {3.5374028378008547`*^9,
3.5374028427908616`*^9}, {3.5374028826709175`*^9, 3.53740289916094*^9}, {
3.5374031666713147`*^9, 3.537403237441414*^9}, {3.5374032698214593`*^9,
3.5374032729314637`*^9}, {3.537403411771658*^9, 3.537403463761731*^9}, {
3.537403508831794*^9, 3.5374035633618703`*^9}, {3.537403669252019*^9,
3.5374036798420334`*^9}, 3.537403913792361*^9, {3.5374066950662546`*^9,
3.537406858726484*^9}, 3.5374069576466227`*^9, {3.5374069980766788`*^9,
3.537407001206683*^9}, {3.5374100229109135`*^9, 3.53741004883095*^9}, {
3.5374101193510485`*^9, 3.5374101285010614`*^9}, 3.5374102374312143`*^9,
3.5374192023124743`*^9, {3.5374851442806253`*^9, 3.5374851830906796`*^9}, {
3.5437903952523317`*^9, 3.5437903959423323`*^9}, {3.5717974273984604`*^9,
3.5717974319784665`*^9}, {3.5718614076984653`*^9,
3.5718614125584726`*^9}, {3.5718616823028526`*^9,
3.5718616999928775`*^9}, {3.637096628845616*^9, 3.637096637594116*^9}, {
3.6372541638570833`*^9, 3.6372541646838846`*^9}, {3.6372640843284836`*^9,
3.637264135367403*^9}, {3.6372641746356487`*^9, 3.6372642251315374`*^9}, {
3.6372642804747024`*^9, 3.637264280727717*^9}, {3.6372643280494237`*^9,
3.637264418289585*^9}, {3.6372664916101723`*^9, 3.637266491806184*^9},
3.637269456865775*^9, 3.6372695770806513`*^9, {3.6372701547766933`*^9,
3.637270184528395*^9}, {3.63729715140819*^9, 3.637297163974909*^9}, {
3.637297228813617*^9, 3.637297299823679*^9}, {3.6372973408980284`*^9,
3.637297354824825*^9}, {3.63729739547915*^9, 3.6372974282520247`*^9}, {
3.637297489238513*^9, 3.637297517038103*^9}, {3.637298037278859*^9,
3.637298171673546*^9}, {3.6372992558345566`*^9, 3.6372992560265675`*^9}, {
3.637299969262362*^9, 3.637300002082239*^9}, 3.6373476484393015`*^9, {
3.6373476937338924`*^9, 3.637347698713177*^9}, {3.6373477594686527`*^9,
3.6373478206271505`*^9}, {3.637351616010234*^9, 3.637351630002034*^9}, {
3.6373539791924*^9, 3.637353992034135*^9}, {3.637354027375156*^9,
3.6373540401698875`*^9}, {3.6373540718416996`*^9, 3.637354103622517*^9},
3.6373543200728974`*^9, {3.6373543755160685`*^9, 3.637354422428752*^9}, {
3.6375426925751667`*^9, 3.637542716434531*^9}, {3.637543174079707*^9,
3.6375431969080124`*^9}, 3.638679753582667*^9, {3.6394413590952935`*^9,
3.639441362128467*^9}, {3.639441609521617*^9, 3.6394416197562027`*^9}, {
3.6394537904793005`*^9, 3.6394537950825644`*^9}, {3.6395923809186797`*^9,
3.639592420466749*^9}, 3.639593973434546*^9, {3.6425493542999983`*^9,
3.6425493551950493`*^9}, 3.642701754590316*^9, 3.64270211387062*^9, {
3.698957746292697*^9, 3.6989577860099683`*^9}, {3.6989578640214305`*^9,
3.69895791734348*^9}, 3.6989580365142965`*^9, 3.6993312300469165`*^9,
3.6993312832274094`*^9, {3.6993807431047554`*^9, 3.6993807647062016`*^9}, {
3.700416325175374*^9, 3.7004163397467995`*^9}, 3.7007630756884317`*^9,
3.701451756421618*^9, 3.706136660589346*^9, 3.710437850184338*^9, {
3.710438308505553*^9, 3.710438343550557*^9}, 3.710438906611762*^9,
3.7104389372255135`*^9, 3.710464861475895*^9, 3.7109691947474566`*^9, {
3.7418209454199486`*^9, 3.741820951020269*^9}},
Background->GrayLevel[0.85]],
Cell["", "Subsubsection",
CellDingbat->None,
CellChangeTimes->{3.4796643211106243`*^9}]
}, Closed]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["3:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
RowBox[{
SubscriptBox["P", "q"], "[", "x", "]"}], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
SuperscriptBox["x", "2"]}]}], ")"}], "p"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{"PolynomialRemainder", "[",
RowBox[{
RowBox[{
SubscriptBox["P", "q"], "[", "x", "]"}], ",",
RowBox[{"a", "+",
RowBox[{"b", " ",
SuperscriptBox["x", "2"]}]}], ",", "x"}], "]"}], "\[Equal]",
"0"}]]]], "None"]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.4964645213514385`*^9,
3.5192470594155855`*^9, {3.519247288125906*^9, 3.5192473207459517`*^9}, {
3.519250976620308*^9, 3.5192509795375133`*^9}, 3.5192520188581386`*^9, {
3.5193215829334736`*^9, 3.519321595725496*^9}, {3.5194112531544743`*^9,
3.5194112537784753`*^9}, 3.5194115106017265`*^9, {3.519411582829853*^9,
3.5194116058086934`*^9}, {3.5194117949434257`*^9,
3.5194118041006413`*^9}, {3.519412000598587*^9, 3.5194120130942087`*^9}, {
3.5197938929263773`*^9, 3.5197938931447773`*^9}, {3.521473804992657*^9,
3.521473829412691*^9}, {3.5214741072930803`*^9, 3.521474108863083*^9}, {
3.523316613544486*^9, 3.523316613544486*^9}, {3.5233184952952356`*^9,
3.5233184952952356`*^9}, {3.523318653417488*^9, 3.523318653417488*^9},
3.5239324213533645`*^9, {3.5239326372733436`*^9, 3.523932666538995*^9}, {
3.523933074292511*^9, 3.523933086226532*^9}, {3.5239331696710787`*^9,
3.523933181121499*^9}, 3.5239335006568604`*^9, {3.5239355418736453`*^9,
3.5239355418736453`*^9}, {3.5268693631599226`*^9,
3.5268693782607493`*^9}, {3.526876698258407*^9, 3.5268767437792873`*^9}, {
3.526877146135194*^9, 3.5268771603156185`*^9}, {3.5269176575336895`*^9,
3.526917673757718*^9}, 3.526917875278872*^9, {3.5269238483809633`*^9,
3.5269238905010376`*^9}, {3.526924565420223*^9, 3.526924565420223*^9}, {
3.5305584520300393`*^9, 3.530558453792842*^9}, 3.534642640217794*^9, {
3.5346427618058662`*^9, 3.534642770032271*^9}, {3.5346429890251036`*^9,
3.5346430159696445`*^9}, {3.5346430990603423`*^9,
3.5346431040603495`*^9}, {3.534706430158797*^9, 3.5347064517804346`*^9}, {
3.5347066724272223`*^9, 3.5347066749388266`*^9}, {3.534708039052023*^9,
3.534708042047228*^9}, {3.5347082570624056`*^9, 3.534708257296406*^9}, {
3.5393937231100464`*^9, 3.5393937232640553`*^9}, {3.5497619160626*^9,
3.5497619527446985`*^9}, {3.5498517888490753`*^9, 3.549851789079075*^9}, {
3.5498518292591314`*^9, 3.549851833339137*^9}, 3.549861675894272*^9, {